home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / utility / utilrexx / mimonoff.lha / miamionoff / InstallMe.dos next >
Text File  |  1996-11-09  |  3KB  |  122 lines

  1. ; DOS installer script for
  2. ;
  3. ; Miami online and offline dos/arexx scripts
  4. ;
  5. ; By Kenneth C. Nilsen (9.11.96)
  6.  
  7. failat 25
  8.  
  9. echo ""
  10. echo "Welcome to the installer script for the scripts:"
  11. echo "Online and Offline for Miami."
  12. echo ""
  13. echo "These script will let you go online and offline from the CLI/Shell."
  14. echo ""
  15. echo "'Online' will start Miami if it's not running and then send arexx"
  16. echo "commands to it telling it to go online."
  17. echo ""
  18. echo "'Offline' will check if Miami is running and if so it'll check if it's"
  19. echo "online or not. If online it will tell it to stop."
  20. echo ""
  21. echo "This installscript will copy the files where they should be."
  22. echo ""
  23. echo ""
  24. echo "Do you want to continue ? " NOLINE
  25. ask "(y/N)"
  26.  
  27. IF NOT WARN
  28.     echo "Script terminated! Bye bye."
  29.     skip bye
  30. endif
  31.  
  32. echo ""
  33. echo "Ok, here we go... please wait!"
  34.  
  35. echo ""
  36. echo "Checking C:WaitForPort................ " NOLINE
  37.  
  38. if not exists "c:WaitForPort"
  39.     echo "copying"
  40.     copy c/WaitForPort c: quiet
  41. else
  42.     echo "already exists! skipping.."
  43. endif
  44.  
  45. echo "Checking C:GetIP...................... " NOLINE
  46.  
  47. if not exists "c:GetIP"
  48.     echo "copying"
  49.     copy c/GetIP c: quiet
  50. else
  51.     echo "already exists! skipping.."
  52. endif
  53.  
  54. echo "Checking Libs:dfunc.library (GetIP)... " NOLINE
  55.  
  56. if not exists "libs:dfunc.library"
  57.     echo "copying"
  58.     copy libs/dfunc.library libs: quiet
  59. else
  60.     echo "already exists! skipping.."
  61. endif
  62.  
  63. echo "Checking S:Online..................... " NOLINE
  64.  
  65. if not exists "s:Online"
  66.     echo "copying"
  67.     copy s/Online s: quiet
  68.     protect s:Online s add
  69.     echo >>S:Online "GetIP `getenv LogPath`"
  70.     echo >>S:Online "; GetIP requires dfunc.library.."
  71. else
  72.     echo "already exists! skipping.."
  73. endif
  74.  
  75. echo "Checking S:Offline.................... " NOLINE
  76.  
  77. if not exists "s:Offline"
  78.     echo "copying"
  79.     copy s/Offline s: quiet
  80.     protect s:Offline s add
  81. else
  82.     echo "already exists! skipping.."
  83. endif
  84.  
  85. echo "Checking Sys:Rexx/MiamiOnline.rexx ... " NOLINE
  86.  
  87. if not exists "Sys:rexx/MiamiOnline.rexx"
  88.     echo "copying"
  89.     copy rexx/MiamiOnline.rexx Sys:rexx/ quiet
  90. else
  91.     echo "already exists! skipping.."
  92. endif
  93.  
  94. echo "Checking Sys:Rexx/MiamiOffline.rexx .. " NOLINE
  95.  
  96. if not exists "Sys:rexx/MiamiOffline.rexx"
  97.     echo "copying"
  98.     copy rexx/MiamiOffline.rexx Sys:rexx/ quiet
  99. else
  100.     echo "already exists! skipping.."
  101. endif
  102.  
  103. echo    "Done!"
  104. echo    ""
  105. echo    "No type 'Online' or 'Offline' in CLI to activate them."
  106. echo    "There is no need to use 'execute' in front."
  107. echo    ""
  108. echo    "You need these files to get these scripts to work:"
  109. echo    ""
  110. echo    "- 'Miami' (of course, remember to change the path of the program"
  111. echo    "  in rexx:MiamiOnline.rexx and rexx:MiamiOffline.rexx !!)"
  112. echo    "- 'RexxMast' running"
  113. echo    "- The 'RX' command in the command search path"
  114. echo    "- Also remember to set dialup log dump to 'T:IP' to get your IP address."
  115. echo    ""
  116. echo    "If any problems e-mail me at: kennecni@IDGonline.no"
  117. echo    ""
  118. echo    "Have fun!"
  119. echo    ""
  120.  
  121. lab bye
  122.